home *** CD-ROM | disk | FTP | other *** search
/ The Fatted Calf / The Fatted Calf.iso / Applications / Workspace / Briefcase / Source / Help.h < prev    next >
Text File  |  1992-03-19  |  903b  |  34 lines

  1. #import <objc/Object.h>
  2. #import "MultApp.h"
  3.  
  4. @interface Help:Object
  5. {
  6.     id helpScrollView;                    /* scrollView to put help text in */
  7.     id helpBrowser;                        /* NXBrowser of help topics */
  8.     id helpPanel;                        /* the help panel */
  9.     char helpDirectory[MAXPATHLEN+1];    /* the directory to find help files */
  10.     char noHelpFile[MAXPATHLEN+1];        /* the name of the "no help" file */
  11. }
  12.  
  13. /* INIT/FREE METHODS */
  14. - init;
  15. - setHelpBrowser:anObject;
  16.  
  17. /* TARGET/ACTION METHODS */
  18.  
  19. - generalHelp:sender;
  20. - browserHit:sender;
  21. - print:sender;
  22.  
  23. - showHelpFile:(const char*)filename;
  24.  
  25. /* BROWSER DELEGATE METHODS */
  26. - (int)browser:sender fillMatrix:matrix inColumn:(int)column;
  27. - browser:sender loadCell:cell atRow:(int)row inColumn:(int)column;
  28. - (BOOL)browser:sender selectCell:(const char *)title inColumn:(int)column;
  29.  
  30. /* WINDOW DELEGATE METHODS */
  31. - windowWillResize:sender toSize:(NXSize *)frameSize;
  32.  
  33. @end
  34.